home *** CD-ROM | disk | FTP | other *** search
/ Acorn RISC PD-CD 1 / Acorn RISC PD-CD 1.iso / languages / dde / _pc / h / fileicon < prev    next >
Text File  |  1992-02-09  |  1KB  |  34 lines

  1. (*
  2.  * Title:   fileicon.h
  3.  * Purpose: general display of a file icon in a window.
  4.  *
  5.  *)
  6.  
  7. # ifndef __fileicon_h
  8. # define __fileicon_h
  9.  
  10. # ifndef __wimp_h 
  11. # include "wimp.h"
  12. # endif
  13.  
  14. (* ------------------------------ fileicon ---------------------------------
  15.  * Description:   Display an icon representing a file, in a given window
  16.  *
  17.  * Parameters:    wimp_w -- the given window's handle
  18.  *                wimp_i -- an existing icon
  19.  *                int filetype -- RISC OS file type (eg. 0x0ffe)
  20.  * Returns:       void.
  21.  * Other Info:    If you want a file icon in a dialogue box then pass that
  22.  *                dialogue box's window handle through first parameter,
  23.  *                    eg fileicon((wimp_w)dbox_syshandle(d),........)
  24.  *                The second parameter is the icon number of the required
  25.  *                icon, within the template set up using FormEd
  26.  *                For an example see the fileInfo template for !Edit.
  27.  *
  28.  *) 
  29. procedure fileicon(w : wimp_w; i : wimp_i; filetype : integer); extern;
  30.  
  31. #endif
  32.  
  33. (* end fileicon.h *)
  34.